home *** CD-ROM | disk | FTP | other *** search
/ Red Eye Press Kit / Red Eye Press Kit.iso / pc / main.dxr / SCRIPTS_71_goJump.ls < prev    next >
Encoding:
Text File  |  2005-07-18  |  252 b   |  14 lines

  1. property goMarker
  2. global JUMPER
  3.  
  4. on getPropertyDescriptionList
  5.   description = [:]
  6.   addProp(description, #goMarker, [#default: 1, #format: #marker, #comment: "go to marker:"])
  7.   return description
  8. end
  9.  
  10. on mouseUp me
  11.   JUMPER = goMarker
  12.   go("UP")
  13. end
  14.